home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form SimpleForm
- BorderStyle = 3 'Fixed Dialog
- Caption = "Simple cc:Mail eXample"
- ClientHeight = 1620
- ClientLeft = 1500
- ClientTop = 1935
- ClientWidth = 6225
- Height = 1995
- Left = 1455
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1620
- ScaleWidth = 6225
- ShowInTaskbar = 0 'False
- Top = 1605
- Width = 6315
- Begin VB.CommandButton Command4
- Caption = "Fetch neXt"
- Height = 375
- Left = 4800
- TabIndex = 5
- Top = 120
- Width = 1215
- End
- Begin VB.CommandButton Command3
- Caption = "Fetch FIRST"
- Height = 375
- Left = 3240
- TabIndex = 4
- Top = 120
- Width = 1335
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 1200
- TabIndex = 2
- Text = "Text1"
- Top = 840
- Width = 4815
- End
- Begin VB.CommandButton Command2
- Caption = "Login cc:Mail"
- Height = 375
- Left = 120
- TabIndex = 1
- Top = 120
- Width = 1335
- End
- Begin VB.CommandButton Command1
- Caption = "MessageCount"
- Height = 375
- Left = 1680
- TabIndex = 0
- Top = 120
- Width = 1335
- End
- Begin Mailx16Lib.MForm MForm1
- Left = 720
- Top = 480
- _Version = 65541
- _ExtentX = 8520
- _ExtentY = 500
- _StockProps = 0
- MXFormName = "FormTag1"
- End
- Begin Mailx16Lib.MSess MSess1
- Left = 120
- Top = 1080
- _Version = 65541
- _ExtentX = 900
- _ExtentY = 900
- _StockProps = 0
- Mail_Type = 2
- End
- Begin Mailx16Lib.MMsg MMsg1
- Left = 720
- Top = 1080
- _Version = 65541
- _ExtentX = 900
- _ExtentY = 900
- _StockProps = 0
- MarkAsRead = 0 'False
- BindString = "MSess1"
- End
- Begin VB.Label Label1
- Caption = "Subject:"
- Height = 255
- Left = 240
- TabIndex = 3
- Top = 840
- Width = 855
- End
- Attribute VB_Name = "SimpleForm"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- MsgBox MMsg1.MsgCount
- End Sub
- Private Sub Command2_Click()
- MSess1.Logon = True
- End Sub
- Private Sub Command3_Click()
- MMsg1.Action = ACTION_FINDFIRST
- Text1 = MMsg1.Subject
- End Sub
- Private Sub Command4_Click()
- MMsg1.Action = ACTION_FINDNEXT
- Text1 = MMsg1.Subject
- End Sub
-